home *** CD-ROM | disk | FTP | other *** search
/ Windows Expert / Windows Expert.iso / windownt / ibison.zip / BISON.SIM < prev    next >
Text File  |  1993-02-10  |  16KB  |  634 lines

  1. /* -*-C-*-  Note some compilers choke on comments on `#line' lines.  */
  2. #line 3 "bison.simple"
  3.  
  4. /* Skeleton output parser for bison,
  5.    Copyright (C) 1984, 1989, 1990 Bob Corbett and Richard Stallman
  6.  
  7.    This program is free software; you can redistribute it and/or modify
  8.    it under the terms of the GNU General Public License as published by
  9.    the Free Software Foundation; either version 1, or (at your option)
  10.    any later version.
  11.  
  12.    This program is distributed in the hope that it will be useful,
  13.    but WITHOUT ANY WARRANTY; without even the implied warranty of
  14.    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  15.    GNU General Public License for more details.
  16.  
  17.    You should have received a copy of the GNU General Public License
  18.    along with this program; if not, write to the Free Software
  19.    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.  */
  20.  
  21.  
  22. #ifndef alloca
  23. #ifdef __GNUC__
  24. #define alloca __builtin_alloca
  25. #else /* not GNU C.  */
  26. #if (!defined (__STDC__) && defined (sparc)) || defined (__sparc__) || defined (__sparc)
  27. #include <alloca.h>
  28. #else /* not sparc */
  29. #if (defined (MSDOS) || defined(WIN32)) && !defined (__TURBOC__)
  30. #include <malloc.h>
  31. #else /* not MSDOS, or __TURBOC__ */
  32. #if defined(_AIX)
  33. #include <malloc.h>
  34.  #pragma alloca
  35. #endif /* not _AIX */
  36. #endif /* not MSDOS, or __TURBOC__ */
  37. #endif /* not sparc.  */
  38. #endif /* not GNU C.  */
  39. #endif /* alloca not defined.  */
  40.  
  41. /* This is the parser code that is written into each bison parser
  42.   when the %semantic_parser declaration is not specified in the grammar.
  43.   It was written by Richard Stallman by simplifying the hairy parser
  44.   used when %semantic_parser is specified.  */
  45.  
  46. /* Note: there must be only one dollar sign in this file.
  47.    It is replaced by the list of actions, each action
  48.    as one case of the switch.  */
  49.  
  50. #define yyerrok        (yyerrstatus = 0)
  51. #define yyclearin    (yychar = YYEMPTY)
  52. #define YYEMPTY        -2
  53. #define YYEOF        0
  54. #define YYACCEPT    return(0)
  55. #define YYABORT     return(1)
  56. #define YYERROR        goto yyerrlab1
  57. /* Like YYERROR except do call yyerror.
  58.    This remains here temporarily to ease the
  59.    transition to the new meaning of YYERROR, for GCC.
  60.    Once GCC version 2 has supplanted version 1, this can go.  */
  61. #define YYFAIL        goto yyerrlab
  62. #define YYRECOVERING()  (!!yyerrstatus)
  63. #define YYBACKUP(token, value) \
  64. do                                \
  65.   if (yychar == YYEMPTY && yylen == 1)                \
  66.     { yychar = (token), yylval = (value);            \
  67.       yychar1 = YYTRANSLATE (yychar);                \
  68.       YYPOPSTACK;                        \
  69.       goto yybackup;                        \
  70.     }                                \
  71.   else                                \
  72.     { yyerror ("syntax error: cannot back up"); YYERROR; }    \
  73. while (0)
  74.  
  75. #define YYTERROR    1
  76. #define YYERRCODE    256
  77.  
  78. #ifndef YYPURE
  79. #define YYLEX        yylex()
  80. #endif
  81.  
  82. #ifdef YYPURE
  83. #ifdef YYLSP_NEEDED
  84. #define YYLEX        yylex(&yylval, &yylloc)
  85. #else
  86. #define YYLEX        yylex(&yylval)
  87. #endif
  88. #endif
  89.  
  90. /* If nonreentrant, generate the variables here */
  91.  
  92. #ifndef YYPURE
  93.  
  94. int    yychar;            /*  the lookahead symbol        */
  95. YYSTYPE    yylval;            /*  the semantic value of the        */
  96.                 /*  lookahead symbol            */
  97.  
  98. #ifdef YYLSP_NEEDED
  99. YYLTYPE yylloc;            /*  location data for the lookahead    */
  100.                 /*  symbol                */
  101. #endif
  102.  
  103. int yynerrs;            /*  number of parse errors so far       */
  104. #endif  /* not YYPURE */
  105.  
  106. #if YYDEBUG != 0
  107. int yydebug;            /*  nonzero means print parse trace    */
  108. /* Since this is uninitialized, it does not stop multiple parsers
  109.    from coexisting.  */
  110. #endif
  111.  
  112. /*  YYINITDEPTH indicates the initial size of the parser's stacks    */
  113.  
  114. #ifndef    YYINITDEPTH
  115. #define YYINITDEPTH 200
  116. #endif
  117.  
  118. /*  YYMAXDEPTH is the maximum size the stacks can grow to
  119.     (effective only if the built-in stack extension method is used).  */
  120.  
  121. #if YYMAXDEPTH == 0
  122. #undef YYMAXDEPTH
  123. #endif
  124.  
  125. #ifndef YYMAXDEPTH
  126. #define YYMAXDEPTH 10000
  127. #endif
  128.  
  129. #if __GNUC__ > 1        /* GNU C and GNU C++ define this.  */
  130. #define __yy_bcopy(FROM,TO,COUNT)    __builtin_memcpy(TO,FROM,COUNT)
  131. #else                /* not GNU C or C++ */
  132. #ifndef __cplusplus
  133.  
  134. /* This is the most reliable way to avoid incompatibilities
  135.    in available built-in functions on various systems.  */
  136. static void
  137. __yy_bcopy (from, to, count)
  138.      char *from;
  139.      char *to;
  140.      int count;
  141. {
  142.   register char *f = from;
  143.   register char *t = to;
  144.   register int i = count;
  145.  
  146.   while (i-- > 0)
  147.     *t++ = *f++;
  148. }
  149.  
  150. #else /* __cplusplus */
  151.  
  152. /* This is the most reliable way to avoid incompatibilities
  153.    in available built-in functions on various systems.  */
  154. static void
  155. __yy_bcopy (char *from, char *to, int count)
  156. {
  157.   register char *f = from;
  158.   register char *t = to;
  159.   register int i = count;
  160.  
  161.   while (i-- > 0)
  162.     *t++ = *f++;
  163. }
  164.  
  165. #endif
  166. #endif
  167.  
  168. #line 169 "bison.simple"
  169. int
  170. yyparse()
  171. {
  172.   register int yystate;
  173.   register int yyn;
  174.   register short *yyssp;
  175.   register YYSTYPE *yyvsp;
  176.   int yyerrstatus;    /*  number of tokens to shift before error messages enabled */
  177.   int yychar1;        /*  lookahead token as an internal (translated) token number */
  178.  
  179.   short    yyssa[YYINITDEPTH];    /*  the state stack            */
  180.   YYSTYPE yyvsa[YYINITDEPTH];    /*  the semantic value stack        */
  181.  
  182.   short *yyss = yyssa;        /*  refer to the stacks thru separate pointers */
  183.   YYSTYPE *yyvs = yyvsa;    /*  to allow yyoverflow to reallocate them elsewhere */
  184.  
  185. #ifdef YYLSP_NEEDED
  186.   YYLTYPE yylsa[YYINITDEPTH];    /*  the location stack            */
  187.   YYLTYPE *yyls = yylsa;
  188.   YYLTYPE *yylsp;
  189.  
  190. #define YYPOPSTACK   (yyvsp--, yyssp--, yylsp--)
  191. #else
  192. #define YYPOPSTACK   (yyvsp--, yyssp--)
  193. #endif
  194.  
  195.   int yystacksize = YYINITDEPTH;
  196.  
  197. #ifdef YYPURE
  198.   int yychar;
  199.   YYSTYPE yylval;
  200.   int yynerrs;
  201. #ifdef YYLSP_NEEDED
  202.   YYLTYPE yylloc;
  203. #endif
  204. #endif
  205.  
  206.   YYSTYPE yyval;        /*  the variable used to return        */
  207.                 /*  semantic values from the action    */
  208.                 /*  routines                */
  209.  
  210.   int yylen;
  211.  
  212. #if YYDEBUG != 0
  213.   if (yydebug)
  214.     fprintf(stderr, "Starting parse\n");
  215. #endif
  216.  
  217.   yystate = 0;
  218.   yyerrstatus = 0;
  219.   yynerrs = 0;
  220.   yychar = YYEMPTY;        /* Cause a token to be read.  */
  221.  
  222.   /* Initialize stack pointers.
  223.      Waste one element of value and location stack
  224.      so that they stay on the same level as the state stack.
  225.      The wasted elements are never initialized.  */
  226.  
  227.   yyssp = yyss - 1;
  228.   yyvsp = yyvs;
  229. #ifdef YYLSP_NEEDED
  230.   yylsp = yyls;
  231. #endif
  232.  
  233. /* Push a new state, which is found in  yystate  .  */
  234. /* In all cases, when you get here, the value and location stacks
  235.    have just been pushed. so pushing a state here evens the stacks.  */
  236. yynewstate:
  237.  
  238.   *++yyssp = yystate;
  239.  
  240.   if (yyssp >= yyss + yystacksize - 1)
  241.     {
  242.       /* Give user a chance to reallocate the stack */
  243.       /* Use copies of these so that the &'s don't force the real ones into memory. */
  244.       YYSTYPE *yyvs1 = yyvs;
  245.       short *yyss1 = yyss;
  246. #ifdef YYLSP_NEEDED
  247.       YYLTYPE *yyls1 = yyls;
  248. #endif
  249.  
  250.       /* Get the current used size of the three stacks, in elements.  */
  251.       int size = yyssp - yyss + 1;
  252.  
  253. #ifdef yyoverflow
  254.       /* Each stack pointer address is followed by the size of
  255.      the data in use in that stack, in bytes.  */
  256.       yyoverflow("parser stack overflow",
  257.          &yyss1, size * sizeof (*yyssp),
  258.          &yyvs1, size * sizeof (*yyvsp),
  259. #ifdef YYLSP_NEEDED
  260.          &yyls1, size * sizeof (*yylsp),
  261. #endif
  262.          &yystacksize);
  263.  
  264.       yyss = yyss1; yyvs = yyvs1;
  265. #ifdef YYLSP_NEEDED
  266.       yyls = yyls1;
  267. #endif
  268. #else /* no yyoverflow */
  269.       /* Extend the stack our own way.  */
  270.       if (yystacksize >= YYMAXDEPTH)
  271.     {
  272.       yyerror("parser stack overflow");
  273.       return 2;
  274.     }
  275.       yystacksize *= 2;
  276.       if (yystacksize > YYMAXDEPTH)
  277.     yystacksize = YYMAXDEPTH;
  278.       yyss = (short *) alloca (yystacksize * sizeof (*yyssp));
  279.       __yy_bcopy ((char *)yyss1, (char *)yyss, size * sizeof (*yyssp));
  280.       yyvs = (YYSTYPE *) alloca (yystacksize * sizeof (*yyvsp));
  281.       __yy_bcopy ((char *)yyvs1, (char *)yyvs, size * sizeof (*yyvsp));
  282. #ifdef YYLSP_NEEDED
  283.       yyls = (YYLTYPE *) alloca (yystacksize * sizeof (*yylsp));
  284.       __yy_bcopy ((char *)yyls1, (char *)yyls, size * sizeof (*yylsp));
  285. #endif
  286. #endif /* no yyoverflow */
  287.  
  288.       yyssp = yyss + size - 1;
  289.       yyvsp = yyvs + size - 1;
  290. #ifdef YYLSP_NEEDED
  291.       yylsp = yyls + size - 1;
  292. #endif
  293.  
  294. #if YYDEBUG != 0
  295.       if (yydebug)
  296.     fprintf(stderr, "Stack size increased to %d\n", yystacksize);
  297. #endif
  298.  
  299.       if (yyssp >= yyss + yystacksize - 1)
  300.     YYABORT;
  301.     }
  302.  
  303. #if YYDEBUG != 0
  304.   if (yydebug)
  305.     fprintf(stderr, "Entering state %d\n", yystate);
  306. #endif
  307.  
  308.   goto yybackup;
  309.  yybackup:
  310.  
  311. /* Do appropriate processing given the current state.  */
  312. /* Read a lookahead token if we need one and don't already have one.  */
  313. /* yyresume: */
  314.  
  315.   /* First try to decide what to do without reference to lookahead token.  */
  316.  
  317.   yyn = yypact[yystate];
  318.   if (yyn == YYFLAG)
  319.     goto yydefault;
  320.  
  321.   /* Not known => get a lookahead token if don't already have one.  */
  322.  
  323.   /* yychar is either YYEMPTY or YYEOF
  324.      or a valid token in external form.  */
  325.  
  326.   if (yychar == YYEMPTY)
  327.     {
  328. #if YYDEBUG != 0
  329.       if (yydebug)
  330.     fprintf(stderr, "Reading a token: ");
  331. #endif
  332.       yychar = YYLEX;
  333.     }
  334.  
  335.   /* Convert token to internal form (in yychar1) for indexing tables with */
  336.  
  337.   if (yychar <= 0)        /* This means end of input. */
  338.     {
  339.       yychar1 = 0;
  340.       yychar = YYEOF;        /* Don't call YYLEX any more */
  341.  
  342. #if YYDEBUG != 0
  343.       if (yydebug)
  344.     fprintf(stderr, "Now at end of input.\n");
  345. #endif
  346.     }
  347.   else
  348.     {
  349.       yychar1 = YYTRANSLATE(yychar);
  350.  
  351. #if YYDEBUG != 0
  352.       if (yydebug)
  353.     {
  354.       fprintf (stderr, "Next token is %d (%s", yychar, yytname[yychar1]);
  355.       /* Give the individual parser a way to print the precise meaning
  356.          of a token, for further debugging info.  */
  357. #ifdef YYPRINT
  358.       YYPRINT (stderr, yychar, yylval);
  359. #endif
  360.       fprintf (stderr, ")\n");
  361.     }
  362. #endif
  363.     }
  364.  
  365.   yyn += yychar1;
  366.   if (yyn < 0 || yyn > YYLAST || yycheck[yyn] != yychar1)
  367.     goto yydefault;
  368.  
  369.   yyn = yytable[yyn];
  370.  
  371.   /* yyn is what to do for this token type in this state.
  372.      Negative => reduce, -yyn is rule number.
  373.      Positive => shift, yyn is new state.
  374.        New state is final state => don't bother to shift,
  375.        just return success.
  376.      0, or most negative number => error.  */
  377.  
  378.   if (yyn < 0)
  379.     {
  380.       if (yyn == YYFLAG)
  381.     goto yyerrlab;
  382.       yyn = -yyn;
  383.       goto yyreduce;
  384.     }
  385.   else if (yyn == 0)
  386.     goto yyerrlab;
  387.  
  388.   if (yyn == YYFINAL)
  389.     YYACCEPT;
  390.  
  391.   /* Shift the lookahead token.  */
  392.  
  393. #if YYDEBUG != 0
  394.   if (yydebug)
  395.     fprintf(stderr, "Shifting token %d (%s), ", yychar, yytname[yychar1]);
  396. #endif
  397.  
  398.   /* Discard the token being shifted unless it is eof.  */
  399.   if (yychar != YYEOF)
  400.     yychar = YYEMPTY;
  401.  
  402.   *++yyvsp = yylval;
  403. #ifdef YYLSP_NEEDED
  404.   *++yylsp = yylloc;
  405. #endif
  406.  
  407.   /* count tokens shifted since error; after three, turn off error status.  */
  408.   if (yyerrstatus) yyerrstatus--;
  409.  
  410.   yystate = yyn;
  411.   goto yynewstate;
  412.  
  413. /* Do the default action for the current state.  */
  414. yydefault:
  415.  
  416.   yyn = yydefact[yystate];
  417.   if (yyn == 0)
  418.     goto yyerrlab;
  419.  
  420. /* Do a reduction.  yyn is the number of a rule to reduce with.  */
  421. yyreduce:
  422.   yylen = yyr2[yyn];
  423.   yyval = yyvsp[1-yylen]; /* implement default value of the action */
  424.  
  425. #if YYDEBUG != 0
  426.   if (yydebug)
  427.     {
  428.       int i;
  429.  
  430.       fprintf (stderr, "Reducing via rule %d (line %d), ",
  431.            yyn, yyrline[yyn]);
  432.  
  433.       /* Print the symbols being reduced, and their result.  */
  434.       for (i = yyprhs[yyn]; yyrhs[i] > 0; i++)
  435.     fprintf (stderr, "%s ", yytname[yyrhs[i]]);
  436.       fprintf (stderr, " -> %s\n", yytname[yyr1[yyn]]);
  437.     }
  438. #endif
  439.  
  440. $   /* the action file gets copied in in place of this dollarsign */
  441. #line 442 "bison.simple"
  442.  
  443.   yyvsp -= yylen;
  444.   yyssp -= yylen;
  445. #ifdef YYLSP_NEEDED
  446.   yylsp -= yylen;
  447. #endif
  448.  
  449. #if YYDEBUG != 0
  450.   if (yydebug)
  451.     {
  452.       short *ssp1 = yyss - 1;
  453.       fprintf (stderr, "state stack now");
  454.       while (ssp1 != yyssp)
  455.     fprintf (stderr, " %d", *++ssp1);
  456.       fprintf (stderr, "\n");
  457.     }
  458. #endif
  459.  
  460.   *++yyvsp = yyval;
  461.  
  462. #ifdef YYLSP_NEEDED
  463.   yylsp++;
  464.   if (yylen == 0)
  465.     {
  466.       yylsp->first_line = yylloc.first_line;
  467.       yylsp->first_column = yylloc.first_column;
  468.       yylsp->last_line = (yylsp-1)->last_line;
  469.       yylsp->last_column = (yylsp-1)->last_column;
  470.       yylsp->text = 0;
  471.     }
  472.   else
  473.     {
  474.       yylsp->last_line = (yylsp+yylen-1)->last_line;
  475.       yylsp->last_column = (yylsp+yylen-1)->last_column;
  476.     }
  477. #endif
  478.  
  479.   /* Now "shift" the result of the reduction.
  480.      Determine what state that goes to,
  481.      based on the state we popped back to
  482.      and the rule number reduced by.  */
  483.  
  484.   yyn = yyr1[yyn];
  485.  
  486.   yystate = yypgoto[yyn - YYNTBASE] + *yyssp;
  487.   if (yystate >= 0 && yystate <= YYLAST && yycheck[yystate] == *yyssp)
  488.     yystate = yytable[yystate];
  489.   else
  490.     yystate = yydefgoto[yyn - YYNTBASE];
  491.  
  492.   goto yynewstate;
  493.  
  494. yyerrlab:   /* here on detecting error */
  495.  
  496.   if (! yyerrstatus)
  497.     /* If not already recovering from an error, report this error.  */
  498.     {
  499.       ++yynerrs;
  500.  
  501. #ifdef YYERROR_VERBOSE
  502.       yyn = yypact[yystate];
  503.  
  504.       if (yyn > YYFLAG && yyn < YYLAST)
  505.     {
  506.       int size = 0;
  507.       char *msg;
  508.       int x, count;
  509.  
  510.       count = 0;
  511.       for (x = 0; x < (sizeof(yytname) / sizeof(char *)); x++)
  512.         if (yycheck[x + yyn] == x)
  513.           size += strlen(yytname[x]) + 15, count++;
  514.       msg = (char *) malloc(size + 15);
  515.       if (msg != 0)
  516.         {
  517.           strcpy(msg, "parse error");
  518.  
  519.           if (count < 5)
  520.         {
  521.           count = 0;
  522.           for (x = 0; x < (sizeof(yytname) / sizeof(char *)); x++)
  523.             if (yycheck[x + yyn] == x)
  524.               {
  525.             strcat(msg, count == 0 ? ", expecting `" : " or `");
  526.             strcat(msg, yytname[x]);
  527.             strcat(msg, "'");
  528.             count++;
  529.               }
  530.         }
  531.           yyerror(msg);
  532.           free(msg);
  533.         }
  534.       else
  535.         yyerror ("parse error; also virtual memory exceeded");
  536.     }
  537.       else
  538. #endif /* YYERROR_VERBOSE */
  539.     yyerror("parse error");
  540.     }
  541.  
  542.   goto yyerrlab1;
  543. yyerrlab1:   /* here on error raised explicitly by an action */
  544.  
  545.   if (yyerrstatus == 3)
  546.     {
  547.       /* if just tried and failed to reuse lookahead token after an error, discard it.  */
  548.  
  549.       /* return failure if at end of input */
  550.       if (yychar == YYEOF)
  551.     YYABORT;
  552.  
  553. #if YYDEBUG != 0
  554.       if (yydebug)
  555.     fprintf(stderr, "Discarding token %d (%s).\n", yychar, yytname[yychar1]);
  556. #endif
  557.  
  558.       yychar = YYEMPTY;
  559.     }
  560.  
  561.   /* Else will try to reuse lookahead token
  562.      after shifting the error token.  */
  563.  
  564.   yyerrstatus = 3;        /* Each real token shifted decrements this */
  565.  
  566.   goto yyerrhandle;
  567.  
  568. yyerrdefault:  /* current state does not do anything special for the error token. */
  569.  
  570. #if 0
  571.   /* This is wrong; only states that explicitly want error tokens
  572.      should shift them.  */
  573.   yyn = yydefact[yystate];  /* If its default is to accept any token, ok.  Otherwise pop it.*/
  574.   if (yyn) goto yydefault;
  575. #endif
  576.  
  577. yyerrpop:   /* pop the current state because it cannot handle the error token */
  578.  
  579.   if (yyssp == yyss) YYABORT;
  580.   yyvsp--;
  581.   yystate = *--yyssp;
  582. #ifdef YYLSP_NEEDED
  583.   yylsp--;
  584. #endif
  585.  
  586. #if YYDEBUG != 0
  587.   if (yydebug)
  588.     {
  589.       short *ssp1 = yyss - 1;
  590.       fprintf (stderr, "Error: state stack now");
  591.       while (ssp1 != yyssp)
  592.     fprintf (stderr, " %d", *++ssp1);
  593.       fprintf (stderr, "\n");
  594.     }
  595. #endif
  596.  
  597. yyerrhandle:
  598.  
  599.   yyn = yypact[yystate];
  600.   if (yyn == YYFLAG)
  601.     goto yyerrdefault;
  602.  
  603.   yyn += YYTERROR;
  604.   if (yyn < 0 || yyn > YYLAST || yycheck[yyn] != YYTERROR)
  605.     goto yyerrdefault;
  606.  
  607.   yyn = yytable[yyn];
  608.   if (yyn < 0)
  609.     {
  610.       if (yyn == YYFLAG)
  611.     goto yyerrpop;
  612.       yyn = -yyn;
  613.       goto yyreduce;
  614.     }
  615.   else if (yyn == 0)
  616.     goto yyerrpop;
  617.  
  618.   if (yyn == YYFINAL)
  619.     YYACCEPT;
  620.  
  621. #if YYDEBUG != 0
  622.   if (yydebug)
  623.     fprintf(stderr, "Shifting error token, ");
  624. #endif
  625.  
  626.   *++yyvsp = yylval;
  627. #ifdef YYLSP_NEEDED
  628.   *++yylsp = yylloc;
  629. #endif
  630.  
  631.   yystate = yyn;
  632.   goto yynewstate;
  633. }
  634.